a483f02d2204bb4864ae268b93e9a00508b9527d,runAs-agent/src/main/java/jetbrains/buildServer/runAs/agent/CommandLineExecutorImpl.java,CommandLineExecutorImpl,runProcess,#CommandLineSetup#number#,13

Before Change


      }

      final jetbrains.buildServer.CommandLineExecutor executor = new jetbrains.buildServer.CommandLineExecutor(cmd);
      return executor.runProcess(executionTimeoutSeconds);
    }
    catch (RuntimeException ex) {
      throw  new ExecutionException(ex.getMessage());

After Change


    try {
      LOG.info("Exec:" + cmd.getCommandLineString());
      final jetbrains.buildServer.CommandLineExecutor executor = new jetbrains.buildServer.CommandLineExecutor(cmd);
      final ExecResult result = executor.runProcess(executionTimeoutSeconds);
      if(LOG.isDebugEnabled()) {
        StringBuilder resultStr = new StringBuilder();
        if (result != null) {